home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / shoot / hs21.lha / BBS_Startups / TransAmiga.rexx < prev   
OS/2 REXX Batch file  |  1993-05-02  |  678b  |  28 lines

  1. /* Hack & Slash 2.0 Launcher 
  2.    by: Roger Clark           */
  3.  
  4. options results
  5.  
  6. call pragma('stack',10000)
  7. UserInfo 'a' ; Name = upper(result)
  8. SystemInfo 'm' ; Time = result
  9. SystemInfo '8' ; Line = result
  10. id=time(s)
  11. Transmit "Loading Hack & Slash..."
  12. SetNodeLocation Name' is playing Hack & Slash'
  13.  
  14. path='t:rpg-startup'||line
  15. open('temp',path,'W')
  16. writeln('temp','stack 10000')
  17. writeln('temp','BBS:Extras/Hack&Slash/HSClient -e -h -t'Time' 'Name)
  18. writeln('temp','endcli')
  19. close('temp')
  20.  
  21. address command 'NewShell from 'path' FIFO:hack'id'/rwkecs'
  22. address command 'BBS:Bin/TrShell -n'line' -fhack'id 
  23. address command 'Delete t:rpg-startup'||line
  24. exit
  25.  
  26. /* end of Hack & Slash */
  27.  
  28.